HTML lists images hyperlinks
ordered_lists.html
<ol type="A"> <!-- lettered --> <li>list item A</li> <li>list item B <ol type="1"> <!-- numbered --> <li>list item B1</li> <li>list item B2</li> </ol> </li> <li>list item C</li> </ol>
unordered_lists.html
<ul> <li>A</li> <li>B <ul> <li>B1</li> <li>B2</li> </ul> </ul>
images.html
<img src="https://digisoln.com/resources/atari.gif" alt="Could not load the image."> <!-- relative source requires image and html to be saved in same location: --> <img src="atari.gif" alt="Could not locate the image.">
hyperlinks.html
<a href="https://google.com/search?q=hyperlink">Google search for hyperlink</a> <a href="https://digisoln.com/computational_thought/pseudocode#doubleDiceRoll">using an #anchor</a> <a href="file://C:\Users\">local Users folder</a> <!-- relative hyperlink references a html file from its current location: --> <a href="contactus.html">contact us</a>